home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-11-02 | 18.0 KB | 672 lines | [TEXT/ALFA] |
- ## -*-Tcl-*-
- # ###################################################################
- # HTML mode - tools for editing HTML documents
- #
- # FILE: "htmlStatusBar.tcl"
- # created: 96-06-16 14.24.31
- # last update: 97-10-29 19.32.54
- # Author: Johan Linde
- # E-mail: <jl@theophys.kth.se>
- # www: <http://bach.theophys.kth.se/~jl/Alpha.html>
- #
- # Version: 2.0.3
- #
- # Copyright 1996, 1997 by Johan Linde
- #
- # This software may be used freely, and distributed freely, as long as the
- # receiver is not obligated in any way by receiving it.
- #
- # If you make improvements to this file, please share them!
- #
- # ###################################################################
- ##
-
- proc htmlStatusBar.tcl {} {}
-
- # Opening or only tag of an element - include attributes
- # Status bar for each attribute.
- # Return empty string if user skips an attribute which must be used.
- proc htmlOpenElemStatusBar {elem used wrPos {values ""} {addNotUsed 0} {addHidden 0} {absPos ""}} {
- global htmlActiveElem htmlActiveUsed htmlActiveAttr htmlActiveCache
- global HTMLmodeVars htmlPackageToUse htmlElemEventHandler1
- global htmlURLAttr htmlColorAttr htmlWindowAttr htmlWrapPos
- global htmlSpecURL htmlSpecColor htmlSpecWindow htmlActiveWidth htmlActiveHeight
-
- set promptNoisily $HTMLmodeVars(promptNoisily)
-
- if {![string length $used]} {set used $elem}
- set elem [string toupper $elem]
- set used [string toupper $used]
-
- set htmlActiveUsed $used
- set htmlActiveElem $elem
- set text "<"
- append text [htmlSetCase $elem]
-
- # if there are attributes to ask about, do so
- set reqatts [htmlGetRequired $used]
- set askformore [htmlGetAttrMore $used]
- set optatts [htmlGetOptional $used]
- set useatts [htmlGetUsed $used $reqatts $optatts]
- set alloptatts [htmlGetOptional $used 1]
- set NumberAttrs [htmlGetNumber $used]
-
- set eventatts ""
- set hiddenAtts ""
- set notUsedAtts ""
- set allatts $useatts
- # Add the rest of the attributes?
- if {$askformore || $addNotUsed} {
- foreach attr $optatts {
- if {[lsearch -exact $useatts $attr] < 0} { lappend notUsedAtts $attr}
- }
- }
- set hasAddedHidden 0
- if {$askformore || $addHidden} {
- foreach a $alloptatts {
- if {[lsearch -exact [concat $allatts $notUsedAtts] $a] < 0} {
- lappend hiddenAtts $a
- }
- }
- }
- if {$addNotUsed} {
- append allatts " " $notUsedAtts
- append useatts " " $notUsedAtts
- set notUsedAtts ""
- }
- if {$addHidden} {
- append allatts " $hiddenAtts"
- append useatts " $hiddenAtts"
- set hasAddedHidden 1
- }
- # optionally include event handlers
- if {$HTMLmodeVars(inclEventHandler)} {
- set eventatts [htmlGetEvent $used]
- append useatts " " $eventatts
- append allatts " " $eventatts
- }
- append allatts " " $notUsedAtts
- if {$askformore && $notUsedAtts == "" && !$hasAddedHidden} {
- append allatts " " $hiddenAtts
- set hasAddedHidden 1
- }
- set htmlActiveWidth ""
- set htmlActiveHeight ""
-
- # wrapping
- if {$absPos == ""} {set absPos [getPos]}
- set htmlWrapPos [expr $wrPos == -1 ? [lindex [posToRowCol [getPos]] 1] : $wrPos]
- incr htmlWrapPos [expr [string length $text] + 1]
- for {set i 0} {$i < [llength $allatts] && [llength $useatts]} {incr i} {
-
- set attr [lindex $allatts $i]
- if {$i == [llength $useatts]} {
- # it's time to ask if more is wanted
- if {$promptNoisily} {beep}
- set more ""
- if {$used == "LI IN UL" || $used == "LI IN OL"} {
- set pr "LI:"
- } else {
- set pr "${used}:"
- }
- while {[catch {statusPrompt "$pr More attributes? \[no\] " htmlStatusAskYesOrNo} more]} {
- if {$more == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- }
- if {$more != "yes"} { break }
- set useatts $allatts
- if {!$hasAddedHidden} {
- append allatts " $hiddenAtts"
- set hasAddedHidden 1
- }
- }
- if {[lsearch -exact $reqatts $attr] >= 0} {
- set required 1
- } else {
- set required 0
- }
- set htmlActiveAttr $attr
- set a2 [string trimright $attr =]
- if {[string index $attr [expr [string length $attr] - 1]] == "="} {
- if {([lsearch -exact $htmlURLAttr $attr] >= 0 && [lsearch -exact $htmlSpecURL "${used}!=$a2"] < 0) || \
- [lsearch -exact $htmlSpecURL "${used}=$a2"] >= 0} {
- # URL attibute
- set htmlActiveCache URLs
- if {[catch {htmlAskURL $attr $required [lindex $values $i]} v]} {
- if {$v != "Skip rest!"} {
- error ""
- } elseif {!$required} {
- set i [llength $allatts]
- } else {
- set v ""
- }
- } elseif {[string length $v]} {
- append text [htmlWrapTag "[htmlSetCase $attr][htmlAddQuotes [htmlURLescape2 $v]]"]
- }
- } elseif {([lsearch -exact $htmlColorAttr $attr] >= 0 && [lsearch -exact $htmlSpecColor "${used}!=$a2"] < 0) || \
- [lsearch -exact $htmlSpecColor "${used}=$a2"] >= 0} {
- # Color attribute
- if {[catch {htmlAskColor $attr $required [lindex $values $i]} v]} {
- if {$v != "Skip rest!"} {
- error ""
- } elseif {!$required} {
- set i [llength $allatts]
- } else {
- set v ""
- }
- } elseif {[string length $v]} {
- append text [htmlWrapTag "[htmlSetCase $attr][htmlAddQuotes $v]"]
- }
- } elseif {([lsearch -exact $htmlWindowAttr $attr] >= 0 && [lsearch -exact $htmlSpecWindow "${used}!=$a2"] < 0) || \
- [lsearch -exact $htmlSpecWindow "${used}=$a2"] >= 0} {
- # Window attribute
- set htmlActiveCache windows
- if {[catch {htmlAskURL $attr $required [lindex $values $i]} v]} {
- if {$v != "Skip rest!"} {
- error ""
- } elseif {!$required} {
- set i [llength $allatts]
- } else {
- set v ""
- }
- } elseif {[string length $v]} {
- append text [htmlWrapTag "[htmlSetCase $attr][htmlAddQuotes $v]"]
- }
- } elseif {[lsearch $NumberAttrs "$attr*"] >= 0} {
- # Number attribute
- if {[catch {htmlAskNumber $used $attr $required [lindex $values $i]} v]} {
- if {$v != "Skip rest!"} {
- error ""
- } elseif {!$required} {
- set i [llength $allatts]
- } else {
- set v ""
- }
- } elseif {[string length $v]} {
- append text [htmlWrapTag "[htmlSetCase $attr][htmlAddQuotes $v]"]
- }
- } else {
- # other attribute
- if {$promptNoisily} {beep}
- if {[catch {htmlStatusAskAttr $used $attr $required [lindex $values $i]} v]} {
- if {$v != "Skip rest!"} {
- error ""
- } elseif {!$required} {
- set i [llength $allatts]
- } else {
- set v ""
- }
- } elseif {[string length $v]} {
- htmlOpenExtraThings $used $attr $v
- if {[lsearch -exact $eventatts $attr] < 0} {
- set attr [htmlSetCase $attr]
- }
- append text [htmlWrapTag "$attr[htmlAddQuotes $v]"]
- }
- }
- if {![string length $v] && $required } {
- alertnote "You must give $attr a value."
- incr i -1
- }
- } else {
- # yes-no attribute
- if {$promptNoisily} {beep}
- set v ""
- set yn no
- if {[lindex $values $i] == "1"} {set yn yes}
- while {[catch {statusPrompt "${used}:$attr \[$yn\] " htmlStatusAskYesOrNo} v]} {
- if {$v == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- if {$v == "Skip rest!"} {
- set i [llength $allatts]
- break
- }
- if {$v == "No value"} {
- set v no
- break
- }
- }
- if {$v == ""} {set v $yn}
- if {$v == "yes"} {append text [htmlWrapTag [htmlSetCase $attr]]}
- }
- }
-
- # Some tests that input is ok.
- if {[htmlFontBaseTest $text "message"]} {beep; set text ""}
- if {$elem == "A" && [htmlATest $text "message"]} {beep; set text ""}
- if {$elem == "FRAMESET" && [htmlFramesetTest $text "message"]} {beep; set text ""}
- if {$elem == "SPACER" && [htmlSpacerTest $text "message"]} {beep; set text ""}
- if {$elem == "AREA" && [htmlAreaTest $text "message"]} {beep; set text ""}
- if {[string length $text] } {append text ">"}
- catch {unset htmlActiveUsed}
- catch {unset htmlActiveElem}
- catch {unset htmlActiveAttr}
- catch {unset htmlActiveCache}
- catch {unset htmlActiveWidth}
- catch {unset htmlActiveHeight}
- return ${text}
- }
-
- # Choose a color name or add a color number
-
- proc htmlAskColor {attr required default} {
- global HTMLmodeVars htmlColorTabSeen htmlActiveUsed htmlColorName
- global basicColors htmluserColors htmlColors htmlActiveColor
-
- set promptNoisily $HTMLmodeVars(promptNoisily)
-
- # put users colours first
- set htmlColors [lsort [array names htmluserColors]]
- append htmlColors " " $basicColors
-
- while {1} {
- # Loop until input is valid or everything is cancelled, then something is returned
- if {$promptNoisily} {beep}
- set htmlColorTabSeen 0
- set pr ""
- if {!$required} { set pr "(optional) "}
- append pr ${htmlActiveUsed}:${attr}
- if {$default != ""} {append pr " \[$default\] "}
- while {[catch {statusPrompt $pr htmlColorStatusFunc} r]} {
- if {$r == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- if {$r == "Continue!"} {
- set r $htmlActiveColor
- unset htmlActiveColor
- break
- }
- if {$r == "Skip rest!"} {error "Skip rest!"}
- if {$r == "No value"} {return}
- }
- set r [string trim $r]
- if {$r == ""} {return $default}
- # Users own color?
- if {[info exists htmluserColors($r)]} {return $htmluserColors($r)}
- # Predefined color?
- if {[info exists htmlColorName($r)]} {
- return $htmlColorName($r)
- } else {
- set col [htmlCheckColorNumber $r]
- if {$col != 0} {
- return $col
- } else {
- alertnote "$r is not a valid color number. It should be of the form #RRGGBB."
- }
- }
- }
- }
-
- proc htmlColorStatusFunc {curr c} {
- global htmlActiveAttr htmlColorTabSeen htmlColorName
- global htmlColors htmlActiveColor htmlActiveUsed
-
- if {$c == "\032"} {
- error "Cancel all!"
- }
- if {$c == "\021"} {error "Skip rest!"}
- if {$c == "\004"} {error "No value"}
- # ctrl-f is new color.
- if {$c == "\006"} {
- set newcolor [htmlAddNewColor]
- if {[string length $newcolor]} {
- set htmlActiveColor $newcolor
- error "Continue!"
- } else {
- return
- }
- }
-
- if {$c != "\t"} {
- set htmlColorTabSeen 0
- return $c
- }
-
- set matches {}
- set attr $htmlActiveAttr
- foreach w $htmlColors {
- if {[string match "$curr*" $w]} {
- lappend matches $w
- }
- }
- if {![llength $matches]} {
- beep
- } else {
- if {$htmlColorTabSeen} {
- if {[catch {listpick -p ${htmlActiveUsed}:${htmlActiveAttr} $matches} ret]} {
- set ret ""
- }
- if {[string length $ret]} {
- set htmlActiveColor $ret
- error "Continue!"
- }
- set htmlColorTabSeen 0
- } else {
- set htmlColorTabSeen 1
- set ret [string range [largestPrefix $matches] [string length $curr] end]
- }
- return $ret
- }
- return
- }
-
-
- # HREF attributes are handled as a listpick from a cached list
- proc htmlAskURL {attr required default} {
- global htmlURLTabSeen
- global HTMLmodeVars htmlActiveUsed htmlActiveCache htmlActiveURL
-
- if {$HTMLmodeVars(promptNoisily)} {beep}
- set htmlURLTabSeen 0
- if {!$required} { set pr "(optional) "}
- append pr ${htmlActiveUsed}:${attr}
- if {$default != ""} {append pr " \[$default\] "}
- while {[catch {statusPrompt $pr htmlURLStatusFunc} r]} {
- if {$r == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- if {$r == "Continue!"} {
- set r $htmlActiveURL
- unset htmlActiveURL
- break
- }
- if {$r == "Skip rest!"} {error "Skip rest!"}
- if {$r == "No value"} {return}
- }
- set r [string trim $r]
- htmlAddToCache $htmlActiveCache $r
- if {$r == ""} {return $default}
- return $r
- }
-
-
- proc htmlURLStatusFunc {curr c} {
- global HTMLmodeVars htmlActiveAttr htmlURLTabSeen htmlActiveCache htmlActiveURL
- global htmlActiveUsed htmlActiveWidth htmlActiveHeight
-
- if {$c == "\032"} {
- error "Cancel all!"
- }
- if {$c == "\021"} {error "Skip rest!"}
- if {$c == "\004"} {error "No value"}
- if {$htmlActiveCache == "windows"} {set URLs {_self _top _parent _blank}}
- append URLs " " $HTMLmodeVars($htmlActiveCache)
-
- # ctrl-f for file dialog.
- if {$c == "\006"} {
- if {$htmlActiveCache == "windows"} {
- beep
- return
- }
- set newURL [htmlGetFile]
- if {[string length $newURL]} {
- set htmlActiveURL [lindex $newURL 0]
- if {[llength [set nnn [lindex $newURL 1]]] && $htmlActiveAttr == "SRC="} {
- set htmlActiveWidth [lindex $nnn 0]
- set htmlActiveHeight [lindex $nnn 1]
- }
- error "Continue!"
- } else {
- return
- }
- }
-
- if {$c != "\t"} {
- set htmlURLTabSeen 0
- return $c
- }
-
- set matches {}
- foreach w $URLs {
- if {[string match "$curr*" $w]} {
- lappend matches $w
- }
- }
- if {![llength $matches]} {
- beep
- } else {
- if {$htmlURLTabSeen} {
- if {[catch {listpick -p ${htmlActiveUsed}:${htmlActiveAttr} $matches} ret]} {
- set ret ""
- }
- if {[string length $ret]} {
- set htmlActiveURL $ret
- error "Continue!"
- }
- set htmlURLTabSeen 0
- } else {
- set htmlURLTabSeen 1
- set ret [string range [largestPrefix $matches] [string length $curr] end]
- }
- return $ret
- }
- return
- }
-
- proc htmlStatusAskAttr {used attr required default} {
- global htmlAttrTabSeen htmlActiveInput
-
- set htmlAttrTabSeen 0
- if {!$required} {
- set pr "(optional) "
- } else {
- set pr {}
- }
- if {$used == "LI IN UL" || $used == "LI IN OL"} { # these two are special
- append pr LI:$attr
- } else {
- append pr ${used}:$attr
- }
- if {$default != ""} {append pr " \[$default\] "}
- set v ""
- while {[catch {statusPrompt $pr htmlAttrStatusFunc} v]} {
- if {$v == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- if {$v == "Continue!"} {
- set v $htmlActiveInput
- unset htmlActiveInput
- break
- }
- if {$v == "Skip rest!"} {error "Skip rest!"}
- if {$v == "No value"} {return}
- }
-
- # Trim only if it's only spaces.
- if {[string trim $v] == ""} {set v ""}
- if {$v == ""} {return $default}
- # if there are choices, check if the user has typed one.
- set choices [htmlGetChoices $used]
-
- set matches {}
- set areChoices [string match "*${attr}*" $choices]
-
- if {!$areChoices} {
- return $v
- } else {
- foreach w $choices {
- if {($used == "LI IN OL" || $used == "OL") && $attr == "TYPE="} { # special case
- set c ${attr}$v
- } else {
- set c [string toupper "${attr}${v}*"]
- }
- if {[string match "${c}*" $w]} {
- lappend matches $w
- }
- }
- # if unique extension, add what's needed, otherwise return nothing.
- if {[llength $matches] == 1 && [string length $v]} {
- set ret [string range $matches [string length $attr] end]
- if {($used != "LI IN OL" && $used != "OL") || $attr != "TYPE="} {
- set ret [htmlSetCase $ret]
- }
- return $ret
- } else {
- return
- }
- }
- }
-
- # CDATA element attribute, status window match completion
- proc htmlAttrStatusFunc {curr c} {
- global htmlActiveUsed htmlActiveAttr htmlAttrTabSeen htmlActiveInput
-
- if {$c == "\032"} {error "Cancel all!"}
- if {$c == "\021"} {error "Skip rest!"}
- if {$c == "\004"} {error "No value"}
- # should we set the case or not (are there predefined choices)?
- set choices [htmlGetChoices $htmlActiveUsed]
- set matches {}
- set attr $htmlActiveAttr
- set areChoices [string match "*${attr}*" $choices]
- foreach w $choices {
- if {($htmlActiveUsed == "LI IN OL" || $htmlActiveUsed == "OL") \
- && $attr == "TYPE="} { # special case
- if {[string match "${attr}${curr}*" $w]} {
- lappend matches [string range $w [string length $attr] end]
- }
- } elseif {[string match [string toupper "${attr}${curr}*"] $w]} {
- lappend matches [string range $w [string length $attr] end]
- }
- }
-
- if {$c != "\t" } {
- set htmlAttrTabSeen 0
- if {$areChoices} {
- # check if the last character matches
- set matches {}
- foreach w $choices {
- if {[string match [string toupper "${attr}${curr}${c}*"] $w]} {
- lappend matches [string range $w [string length $attr] end]
- }
- }
- if {[llength $matches]} {
- if {($htmlActiveUsed != "LI IN OL" && $htmlActiveUsed != "OL") \
- || $attr != "TYPE="} { # special case
- set c [htmlSetCase $c]
- }
- return $c
- } else {
- beep
- return
- }
- } else {
- return $c
- }
- }
-
- # it's a tab
- if {![llength $matches]} {
- beep
- } else {
- if {$htmlAttrTabSeen} {
- if {[catch {listpick -p ${htmlActiveUsed}:${htmlActiveAttr} $matches} ret]} {
- set ret ""
- }
- if {[string length $ret]} {
- set htmlActiveInput $ret
- error "Continue!"
- }
- set htmlAttrTabSeen 0
- } else {
- set htmlAttrTabSeen 1
- set ret [string range [largestPrefix $matches] [string length $curr] end]
- }
- if {($htmlActiveUsed != "LI IN OL" && $htmlActiveUsed != "OL") \
- || $attr != "TYPE="} {
- # special case
- set ret [htmlSetCase $ret]
- }
- return $ret
- }
- return
- }
-
- # ask for an attribute which is a number. Returns "" if input is not valid.
- proc htmlAskNumber {item attr required default} {
- global HTMLmodeVars htmlActiveWidth htmlActiveHeight
-
- set promptNoisily $HTMLmodeVars(promptNoisily)
-
- # loop until input is valid, then something is returned
- while {1} {
- if {$promptNoisily} {beep}
- set pr ""
- if {!$required} { set pr "(optional) "}
- # these two are special
- if {$item == "LI IN UL" || $item == "LI IN OL"} {
- append pr LI:$attr
- } else {
- append pr ${item}:$attr
- }
- if {$item == "IMG" && $attr == "WIDTH=" && $htmlActiveWidth != ""} {
- append pr " \[$htmlActiveWidth\] "
- } elseif {$item == "IMG" && $attr == "HEIGHT=" && $htmlActiveHeight != ""} {
- append pr " \[$htmlActiveHeight\] "
- } elseif {$default != ""} {
- append pr " \[$default\] "
- }
-
- while {[catch {statusPrompt $pr htmlNumberStatusFunc} r]} {
- if {$r == "Cancel all!"} {
- message "Cancel"
- error ""
- }
- if {$r == "Skip rest!"} {error "Skip rest!"}
- if {$r == "No value"} {return}
- }
-
- set r [string trim $r]
- # if no input, return default
- if {$r == ""} {
- if {$item == "IMG" && $attr == "WIDTH=" && $htmlActiveWidth != ""} {
- return $htmlActiveWidth
- } elseif {$item == "IMG" && $attr == "HEIGHT=" && $htmlActiveHeight != ""} {
- return $htmlActiveHeight
- } else {
- return $default
- }
- }
- # check that input is valid.
- set numcheck [htmlCheckAttrNumber $item $attr $r]
- if {$numcheck == 1} {
- return $r
- } else {
- alertnote "Invalid input. $numcheck"
- }
- }
- }
-
- proc htmlNumberStatusFunc {curr c} {
-
- if {$c == "\032"} {error "Cancel all!"}
- if {$c == "\021"} {error "Skip rest!"}
- if {$c == "\004"} {error "No value"}
- if {[lsearch -exact {+ - 0 1 2 3 4 5 6 7 8 9 %} $c] >=0 } {
- return $c
- } else {
- beep
- }
- }
-
- # Force yes or no in the status window
- proc htmlStatusAskYesOrNo {curr c} {
- if {$c == "\032"} {error "Cancel all!"}
- if {$c == "\021"} {error "Skip rest!"}
- if {$c == "\004"} {error "No value"}
- set c [string tolower $c]
- if {$curr == ""} {
- if {$c == "n"} {return "no"}
- if {$c == "y"} {return "yes"}
- }
- beep
- return
- }
-